home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Miscellaneous
/
Headlines Code
/
Misc Headers ƒ
/
NeoTextBox.h
< prev
Wrap
Text File
|
1992-01-06
|
830b
|
19 lines
/*****************************************************************************************
NeoTextBox.h - include file for NeoTextBox
Written by Bryan K. Ressler (Beaker)
*****************************************************************************************/
/** DEFINES *****************************************************************************/
#define ntbJustFull 128 /* Full justification */
#define kReturnChar 0x0d /* Carriage return character */
/** MACROS ******************************************************************************/
#define MAXOF(a,b) (((a) > (b)) ? (a) : (b))
/** PUBLIC PROTOTYPES *******************************************************************/
short NeoTextBox(unsigned char *theText, unsigned long textLen, Rect *box,
short just, short htCode, short *endY, short *lhUsed);